Skip to content

Instantly share code, notes, and snippets.

View rrishabhj's full-sized avatar

Rishabh jindal rrishabhj

  • MSIT
View GitHub Profile
MMT HOTEL CODE IS MOBILE DND (Y/N) IS DESKTOP DND (Y/N) IS HPA ENABLED FOR MMT (Y/N) MOBILE SEGMENTS TO BE PASSED DESKTOP SEGMENTS TO BE PASSED
201603201133135021 Y Y Y 112,611,211,120 112,611,211,120
201608251546164386 Y Y Y 112,611,211,120 112,611,211,120
201701131354381423 Y Y Y 112,611,211,120 112,611,211,120
201704201334339511 Y Y Y 112,611,211,120 112,611,211,120
201705020408337933 Y Y Y 112,611,211,120 112,611,211,120
201705020525099495 Y Y Y 112,611,211,120 112,611,211,120
201904291104588026 N N Y 1120 1120
201905061532199509 N N Y 1120 1120
201905080046557185 Y Y Y 112,611,211,120 112,611,211,120
MMT Hotel Code Is Mobile DND (Y/N) Is Desktop DND (Y/N) Is HPA enabled for MMT (Y/N) Mobile Segments to be passed Desktop Segments to be passed
201603201133135021 Y Y Y 112,611,211,120 112,611,211,120
201608251546164386 Y Y Y 112,611,211,120 112,611,211,120
201701131354381423 Y Y Y 112,611,211,120 112,611,211,120
201704201334339511 Y Y Y 112,611,211,120 112,611,211,120
201705020408337933 Y Y Y 112,611,211,120 112,611,211,120
201705020525099495 Y Y Y 112,611,211,120 112,611,211,120
201904291104588026 N N Y 1120 1120
201905061532199509 N N Y 1120 1120
201905080046557185 Y Y Y 112,611,211,120 112,611,211,120
@rrishabhj
rrishabhj / strstr.java
Created May 8, 2017 22:39
Simple Java Program To implement strstr function
class Main{
public static void main(String[] args) {
System.out.println(strStr("this is a test. this is a test.","test"));
}
public static int strStr(String haystack, String needle) {
if (needle == null || haystack == null)
return -1;
if (needle.length() > haystack.length())
package com.rishabh.github.sunshine.network;
import android.content.Context;
import android.os.AsyncTask;
import android.util.Log;
import com.android.volley.Request;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.JsonObjectRequest;