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 student; | |
| import java.util.Scanner; | |
| interface AadharCardProcess { | |
| abstract void GetUsername(String user); | |
| abstract void GetPhonenumber(int number); | |
| abstract void CreateAadharnumber(int newAadharnumber); |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Index Page</title> | |
| <!-- External CSS --> | |
| <link rel="stylesheet" href="style.css" /> |
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
| <html> | |
| <style> | |
| body { | |
| font-family: 'Comic Sans MS'; | |
| } | |
| h2 { | |
| color: rgb(255,255,255); | |
| text-transform: uppercase; | |
| background-color: rgb(34,34,34); | |
| padding: 20px; |
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
| import tkinter as tk | |
| from tkinter import ttk | |
| from datetime import datetime | |
| import pytz | |
| def get_selected_times(): | |
| selected_indices = country_listbox.curselection() | |
| if not selected_indices: | |
| return |
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
| a = "abcdefg" | |
| l = ["a", "acef", "defg", "gg"] | |
| word_count = 0 | |
| for word in l: | |
| i = 0 # pointer in main string | |
| for ch in word: | |
| i = a.find(ch, i) | |
| if i == -1: |
OlderNewer