π
Working from home
I am a knowledge seeker, working as a flutter application developer.
- New Delhi, India
- https://jagrajsinghji.github.io
- @jagrajsinghji
Pinned Loading
-
pi-gen
pi-gen PublicForked from RPi-Distro/pi-gen
Tool used to create the raspberrypi.org Raspbian images
Shell
-
firebase/flutterfire
firebase/flutterfire Publicπ₯ A collection of Firebase plugins for Flutter apps.
-
draws on a canvas
draws on a canvas 1import 'package:flutter/material.dart';
2import 'dart:ui' as ui;
34void main() {
5runApp(MyApp());
-
-
Right Rotation Problem Problem Scen...
Right Rotation Problem Problem Scenario - Given an array of size 'x' elements, perform an operation on it such that each of its elements are shifted by 'y' units to the right, given that any special characters (within strings), if present, are left with their positions unchanged. Example - Let's take an example : Problem Array β [1, 2, 3, "#", 5, "&"] Resultant Array β [3, 5, 1, "#", 2, "&"] With regard to the problem scenario described above, in this example : x = 6 y = 2 Code Snippet For You to Begin With - /** * * @param {Array} arr - given array * @param {string} units - total number of rotations to perform */ function rightRotation(arr, units){ // your code goes here } Good Luck ππ½ 1void main() {
23/// The input list
4var list =["@",2,"#",4,"%", 8,"@"];
5 -
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.