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
| 🌞 Morning 77 commits ██░░░░░░░░░░░░░░░░░░░ 9.9% | |
| 🌆 Daytime 331 commits ████████▉░░░░░░░░░░░░ 42.4% | |
| 🌃 Evening 366 commits █████████▊░░░░░░░░░░░ 46.9% | |
| 🌙 Night 7 commits ▏░░░░░░░░░░░░░░░░░░░░ 0.9% |
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
| implementation 'com.android.support:appcompat-v7:28.0.0' | |
| implementation 'com.android.support:animated-vector-drawable:28.0.0' | |
| implementation 'com.android.support:support-v4:28.0.0' |
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
| implementation 'com.android.support:appcompat-v7:28.0.0' | |
| implementation 'com.android.support:animated-vector-drawable:28.0.0' | |
| implementation 'com.android.support:support-v4:22.1.1' |
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
| dependencies { | |
| implementation 'com.baoyz.swipemenulistview:library:1.3.0' | |
| } |
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
| def Odd(a,b): | |
| if (a % 2) == 1: | |
| print(a, end=' ') | |
| if a == b: | |
| return | |
| else: | |
| a += 1 | |
| Odd(a,b) | |
| a, b = map(int, input().split(',')) |
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
| def Odd(a,b): | |
| if (a % 2) == 1: | |
| print(a, end=' ') | |
| if a == b: | |
| return | |
| else: | |
| a += 1 | |
| Odd(a,b) | |
| a, b = map(int, input().split()) |
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
| #Find Odd value program with input 2 values | |
| def Odd(a,b): | |
| if (a % 2) == 1: | |
| print(a, end=' ') | |
| if a == b: | |
| return | |
| else: | |
| a += 1 | |
| Odd(a,b) | |
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
| <TextView | |
| android:id="@+id/tvHour" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:textcolor="00" /> |
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(void){ | |
| cout << "hello, Gist!"; | |
| } |