Cisco
80 questions · 21 experiences · LeetCode (96) · Other (5)
101 entries
1/5Cisco Coding Round | Rejected
Cisco | SDE-2 | OA | 2 yr exp
Code with Cisco
Avoid cisco meraki
Senior Software Engineer Cisco experience
New question - Cisco coding question (at least read question once)
Cisco coding challenge
Cisco | SDE Intern 2025 | OnCampus | PPO CTC(need clarification)
Cisco online coding assessment 2024 November
Cisco Assessment for internship as a software engineer
CIsco OA SHL Questions
Cisco Ideathon OA
CISCO Past Interview problems list
Cisco || SDE Intern Interview Experience || [Rejected]
Cisco | SWE (Intern + FTE) | Banglore [Offer]
Cisco OA 2024 | Selling apples by count
Cisco Assessment test
Cisco | SDE Intern Interview Experience | [Rejected] (Tier 3 Student)
Need help with these cisco online assessment questions
Cisco | Software Engineer - New Grad | Bengaluru | Nov 2022 [OFFER]
Cisco | AppDynamics| OA | Feb'23
Hop skip jump game (Cisco OA)
Cisco OA
Ciso - New Grad SWE - London, UK
Cisco OA - Software Engineer (Ottawa)
Cisco Coding Round | Rejected
Question Details
The interviewer gave the question on a coder pad link, asked to share screen. Post that there was very limited interaction, only to discuss the test cases. Got 0 hints or suggestions on the implementation.
Q: https://leetcode.com/problems/remove-k-digits/
Statement:
```# Given a number, remove n characters to find the minimum number.
Ex 1: 19345 , n = 3
Outout = 13
Explanation: Removing 9,4,5 characters results in minimum number
Ex 2: 100200, n = 1
output = 200
Explanation: Removing 1 results in minimum number
```