Coding | EXAMS | IBM ACCENTURE | VIRTUSA | IBM | AMAZON | TCS | EPAM | WILEY EDGE | TECH MAHINDRA | JPMORGAN | HCL | WIPRO
3.36K subscribers
1.13K photos
3 videos
17 files
373 links
Main channel https://t.me/Coding_000
Contact Admin 👉 @ILOVEU_143 for booking your exam slots
Web- https://coding000.github.io/Projects/
💯% clearance in any placement exams
OffCampus -https://t.me/Offcampus_000
Discussion- https://t.me/exams_discussion
Download Telegram
No one is sharing my channel🥺🥺😢😞😐

Share -- @Coding_000❤️
👍5💘3💯21
Guys plagiarism will be checked so please change method order and variable name 

Share @Coding_000❤️
👍61😱1
Share our channel screenshot in large groups

For coding answers 🏃🏃🏃🏃
👍102
#include <iostream>
#include <bits/stdc++.h>
using namespace std;

int main()
{
    int n,k,ans;
    cin>>n>>k;
    int arr[n];
    for(int i=0;i<n;i++){
        cin>>arr[i];
        if(arr[i]<=k)
            ans++;
    }
    cout<<ans;
    return 0;
}
👍4

range_start = int(input())
range_end = int(input())
mountains = list(map(int,input().split(" ")))

max_altitude = 0
for i in range(range_start - 1, range_end):
    if mountains[i] > max_altitude:
        max_altitude = mountains[i]

print(max_altitude)

Tashi is a Mountaineer Code
Python
👍2