This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |