Welcome to HackerRank DSL (Domain Specific Language) Documentation! You can use our the DSL to generate code stubs that read test case data from standard input in hackerrank challenges.
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 streamlit as st | |
| from logic import algoSolver | |
| import pandas as pd | |
| st.title('CPU scheduling algorithm') | |
| at = st.text_input('Arrival time') | |
| bt = st.text_input('Burst time') |
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
| public class Main { | |
| public static void main(String[] args) { | |
| snakeGameGUI s = new snakeGameGUI(); | |
| s.startGame(); | |
| } | |
| } |
