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
| 2024-11-12 01:19:32.010 15947-15990 System.out com.example.myapplication I --------------------------- | |
| 2024-11-12 01:19:32.011 15947-15990 System.out com.example.myapplication I Activity Resumed com.spotify.music | |
| 2024-11-12 01:19:32.011 15947-15990 System.out com.example.myapplication I --------------------------- | |
| 2024-11-12 01:19:32.506 15947-15990 System.out com.example.myapplication I --------------------------- | |
| 2024-11-12 01:19:32.506 15947-15990 System.out com.example.myapplication I Activity Resumed com.spotify.music | |
| 2024-11-12 01:19:32.506 15947-15990 System.out com.example.myapplication I --------------------------- | |
| 2024-11-12 01:19:33.012 15947-15990 System.out com.example.myapplication I --------------------------- | |
| 2024-11-12 01:19:33.013 15947-15990 System.out com.example.myapplication I Activity Stopp |
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 Solution { | |
| fun twoSum(nums: IntArray, target: Int): IntArray { | |
| val myMap = mutableMapOf<Int,Int>() | |
| for(i in 0..nums.size-1) { | |
| val difference = target - nums[i] | |
| val differenceIndex = myMap.getOrElse(difference){-1} | |
| if(differenceIndex != -1) { | |
| return intArrayOf(i,differenceIndex) | |
| } | |
| else{ |
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
| #!/bin/python3 | |
| import math | |
| import os | |
| import random | |
| import re | |
| import sys | |
| from datetime import datetime | |
| from datetime import timedelta | |
| import calendar |
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
| <!--Line 163 pasun explanation read kara better samjel.Next line 22--> | |
| <html> | |
| <head> | |
| <title>title</title> | |
| <!--Ikde fonts ani Jquery Bootstrap Firebase load karat ahe aaplya file mdhe.--> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
| <link href='https://fonts.googleapis.com/css?family=Bungee' rel='stylesheet'> | |
| <link href='https://fonts.googleapis.com/css?family=Flamenco' rel='stylesheet'> | |
| <link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet"> | |
| <link href='https://fonts.googleapis.com/css?family=Black Ops One' rel='stylesheet'> |
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
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| int x, n; | |
| cout<<"enter n"; | |
| cin>>n; |
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
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| int x, n; | |
| cin>>n; | |
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
| #include <iostream> | |
| using namespace std; | |
| int p(int, int); | |
| int main() | |
| { | |
| int x, n; | |
| cin>>n; |
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
| #include <iostream> | |
| using namespace std; | |
| int p(int, int); | |
| int main() | |
| { | |
| int x, n; | |
| cin>>n; | |
| cin>>x; |
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
| #include <iostream> | |
| using namespace std; | |
| int linMerge(int a[], int b[], int); | |
| int sorMerge(int a[], int b[], int); | |
| int main() | |
| { | |
| int ch, a[20], b[20], size; | |
| cout<<"enter size\n"; | |
| cin>>size; |