Coder Social home page Coder Social logo

s-kachroo / samsungpractice Goto Github PK

View Code? Open in Web Editor NEW
414.0 6.0 178.0 48 KB

Problems for Samsung Research Institute, India - 3 hours Online Test.

C++ 100.00%
samsung india graph dynamic-programming recursion interview-questions interview-preparation interview-practice samsung-research brute-force

samsungpractice's Introduction

Samsung Problems for R&D India

MUST DO PROBLEMS FOR ONLINE 3-HOUR TEST

  • Bipatite Graph
  • Detect and Print Cycle in Graph
  • Burst Balloon
  • Endoscopy
  • Mr Lee
  • Mr Kim
  • Research Team / Rare Elements
  • Spaceship / Bomb Explosion
  • Wormhole
  • Omnious Number

Rest problems are also asked in various Samsung India 3-hour Coding Test.

Other Helpful Resources

For any changes or additional questions, please feel free to raise a PR

samsungpractice's People

Contributors

s-kachroo avatar lakshy1279 avatar tejdeepthumma avatar

Stargazers

Aniket Agarwal avatar Srishti Singh avatar  avatar Shahidul Islam avatar Abu Md. Masbah Uddin avatar Muhammad Satrio Wicaksono avatar  avatar Gaurav Agarwalla avatar Sahil Kumar Yadav avatar  avatar Ares avatar RITWIK CHAKRABORTY avatar R Ram Shankar avatar  avatar Sreenila Rajesh avatar  avatar Konstantyn avatar Kriti Singh avatar Vinayak Soni avatar Pranay Singanalli avatar Purusharth Malik avatar Prashant Ronad avatar  avatar Shaurya avatar Tarun E avatar Sai Kowshik Padala avatar Himanshu Bansal avatar Aditya Kumar Singh avatar DumbSheep avatar Riski D Sabariyanto avatar  avatar  avatar Vishnu H S avatar dhrroovv avatar Gungun tyagi avatar Kedar avatar VatsalJha avatar S. M. Imran Rahman  avatar Brahmika Shree Balaji avatar Biswaranjan Das avatar Sahaj Gupta avatar Chandan Mishra avatar Vaibhav Singh avatar Harsh Mathur avatar Raihanul Islam Nahid avatar  avatar  avatar Sourav Ghosh avatar Miftahul Islam avatar Nabila Ferdous avatar Md Nahid Hassan avatar MD. Maruf Hasan avatar Ranit Mukherjee avatar Tashin Parvez avatar Vanshika Gyanchandani avatar Aman Kumar avatar  avatar Ashok Ramavath avatar waskito shidiq avatar  avatar  avatar  avatar Daksh Kochhar avatar  avatar  avatar jayda rodriguez avatar Amardeep avatar Gajjela Kiran Kumar avatar RAHUL KUMAR avatar Yash Shukla avatar Aaditya Chachra avatar  avatar Harsh Jaiswal avatar  avatar Atharva Kumar avatar  avatar Dhruv Arora avatar Rohit Singh Yadav avatar Ravish Singla avatar Ritik Sharma avatar Shruti Gupta avatar  avatar Vaibhav Kumar Jha avatar  avatar Manoj Katta avatar Ankit avatar Anupam Prakash avatar Deepanshu Rajput avatar  avatar  avatar ‌ARITRA avatar Prabhat Ranjan  avatar MD Fahim Istiak  avatar sudhanshu shekhar avatar  avatar  avatar Aditya Kumar avatar  avatar  avatar KHUSHBOO CHAURASIYA avatar

Watchers

 avatar shikhar jain avatar  avatar Md. Mehedi Hasan Riyad avatar ‌ARITRA avatar SHUBHAM avatar

samsungpractice's Issues

new correct answer in swc advanced portal

As given solution is giving wrong answer on many cases on swc advanced portal.
So here is the correct one.

`
#include
#define bitss <bits/stdc++.h>
#include bitss
using namespace std;
int main(int argc, char** argv)
{
int test_case;
int T;
cin>>T;

for(test_case = 1; test_case <= T; ++test_case)
{
    int n,e;
    cin>>n>>e;
    int u,v;
    int ans=0;
    map<int,int>mp;
    for(int i=0;i<e;i++){
        cin>>u>>v;
        mp[u]=1;
        if(mp[v]==1){
            ans=1;
        }
    }
    cout<<"Case #"<<test_case<<endl<<ans<<endl;
     
}
return 0;

}
`
Kachroo correct.docx

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.