You are on page 1of 2

3.

Write a function that accepts a character array, a zero-based start position and a
length. It should return a character array containing containing lengthcharacters
starting with the startcharacter of the input array. The function should do error
checking on the start position and the length and return null if the either value is not legal.
The function signature is:
char[ ] f(char[ ] a, int start, int len)

Examples

if input parameters are return


{‘a’, ‘b’, ‘c’}, 0, 4 null
{‘a’, ‘b’, ‘c’}, 0, 3 {‘a’, ‘b’, ‘c’}
{‘a’, ‘b’, ‘c’}, 0, 2 {‘a’, ‘b’}
{‘a’, ‘b’, ‘c’}, 0, 1 {‘a’}
{‘a’, ‘b’, ‘c’}, 1, 3 null
{‘a’, ‘b’, ‘c’}, 1, 2 {‘b’, ‘c’}
{‘a’, ‘b’, ‘c’}, 1, 1 {‘b’}
{‘a’, ‘b’, ‘c’}, 2, 2 null
{‘a’, ‘b’, ‘c’}, 2, 1 {‘c’}
{‘a’, ‘b’, ‘c’}, 3, 1 null
{‘a’, ‘b’, ‘c’}, 1, 0 {}
{‘a’, ‘b’, ‘c’}, -1, 2 null
{‘a’, ‘b’, ‘c’}, -1, -2 null
{}, 0, 1 null
 
Solution:
static char[] a3(char[] a, int start, int length)
{
if (length < 0 || start < 0 || start+length-1>=a.length)
{
return null;
}

char[] sub = new char[length];


for (int i=start, j=0; j<length; i++, j++)
{
sub[j] = a[i];
}

return sub;
}

You might also like

  • Pre-Calculus Essentials
    Pre-Calculus Essentials
    From Everand
    Pre-Calculus Essentials
    No ratings yet
  • Introduction to PHP, Part 2, Second Edition
    Introduction to PHP, Part 2, Second Edition
    From Everand
    Introduction to PHP, Part 2, Second Edition
    No ratings yet
  • Blind 75 LeetCode Questions
    Blind 75 LeetCode Questions
    Document46 pages
    Blind 75 LeetCode Questions
    shivamvaishampayan
    No ratings yet
  • Profound Python Data Science
    Profound Python Data Science
    From Everand
    Profound Python Data Science
    No ratings yet
  • Java Beginner Guide
    Java Beginner Guide
    Document2 pages
    Java Beginner Guide
    Shafiqul Islam
    No ratings yet
  • Mum Test: If You Are Using C or C++, The Signature of The Function Is
    Mum Test: If You Are Using C or C++, The Signature of The Function Is
    Document7 pages
    Mum Test: If You Are Using C or C++, The Signature of The Function Is
    Хулан Дашжаргал
    No ratings yet
  • 261 More Array Exercises
    261 More Array Exercises
    Document2 pages
    261 More Array Exercises
    Anonymous WyTCUDyW
    No ratings yet
  • Sample Java Test
    Sample Java Test
    Document5 pages
    Sample Java Test
    Lina Maria
    No ratings yet
  • F
    F
    Document36 pages
    F
    Listiana Dewi Yosi
    No ratings yet
  • F
    F
    Document36 pages
    F
    Tahir mannan
    No ratings yet
  • F
    F
    Document24 pages
    F
    kevin alexander navas jara
    No ratings yet
  • F
    F
    Document36 pages
    F
    Brezeanu Catalina
    No ratings yet
  • F
    F
    Document36 pages
    F
    Antonio Silva
    No ratings yet
  • F
    F
    Document36 pages
    F
    Gabriela Tinta
    No ratings yet
  • Untitled
    Untitled
    Document36 pages
    Untitled
    Daniela Cortes
    No ratings yet
  • F
    F
    Document36 pages
    F
    haira id
    No ratings yet
  • Presentation
    Presentation
    Document36 pages
    Presentation
    Ian Vieira
    No ratings yet
  • Untitled
    Untitled
    Document36 pages
    Untitled
    kamara Mbalou
    No ratings yet
  • F
    F
    Document36 pages
    F
    Harraz Adli
    No ratings yet
  • F
    F
    Document36 pages
    F
    DR SANGEETHA VINCENT
    No ratings yet
  • F
    F
    Document36 pages
    F
    DJ CzincZu
    No ratings yet
  • F
    F
    Document36 pages
    F
    Ryan gamedev
    No ratings yet
  • FOC
    FOC
    Document37 pages
    FOC
    FACTURACION ELECTRONICA
    No ratings yet
  • F
    F
    Document36 pages
    F
    RePrinter
    No ratings yet
  • F
    F
    Document39 pages
    F
    Gabriela Sarubbi
    No ratings yet
  • F
    F
    Document38 pages
    F
    Dennis Flores
    No ratings yet
  • F
    F
    Document39 pages
    F
    Edison Maarat
    No ratings yet
  • F
    F
    Document36 pages
    F
    johnrich morillacapiloyan
    No ratings yet
  • F
    F
    Document36 pages
    F
    Douae Lamzabi
    No ratings yet
  • F
    F
    Document36 pages
    F
    Márk Csanády
    No ratings yet
  • Untitled
    Untitled
    Document36 pages
    Untitled
    Yaneivis Dyj Dla Cruz
    No ratings yet
  • F 002
    F 002
    Document36 pages
    F 002
    Jozias Penov
    No ratings yet
  • F
    F
    Document37 pages
    F
    Cintia Chaparro
    No ratings yet
  • Hclinton 1
    Hclinton 1
    Document6 pages
    Hclinton 1
    Spit Fire
    No ratings yet
  • F
    F
    Document36 pages
    F
    Carolina Lopez
    No ratings yet
  • F
    F
    Document37 pages
    F
    Marcos Romero Durá
    No ratings yet
  • F
    F
    Document37 pages
    F
    Aurent Savila
    No ratings yet
  • F
    F
    Document37 pages
    F
    Y.Sreshta Reddy
    No ratings yet
  • F
    F
    Document37 pages
    F
    Pamela Godoy
    No ratings yet
  • F 002
    F 002
    Document38 pages
    F 002
    Miklos Schnell
    No ratings yet
  • F
    F
    Document38 pages
    F
    Daydou Daydou
    No ratings yet
  • F
    F
    Document38 pages
    F
    To Peor Pesadilla
    No ratings yet
  • F
    F
    Document36 pages
    F
    Peras y Manzanas
    No ratings yet
  • F
    F
    Document38 pages
    F
    Anugrah Jayasakti
    No ratings yet
  • Leetcode Questions
    Leetcode Questions
    Document43 pages
    Leetcode Questions
    Ramakrishna Pradhan
    No ratings yet
  • F
    F
    Document37 pages
    F
    CAMDEN EDMONDSON
    No ratings yet
  • Untitled
    Untitled
    Document37 pages
    Untitled
    Elizabeth Rodriguez Cajar
    No ratings yet
  • F
    F
    Document38 pages
    F
    A. Francisco
    No ratings yet
  • Untitled
    Untitled
    Document37 pages
    Untitled
    Raquel Silva
    No ratings yet
  • F
    F
    Document39 pages
    F
    Birhanu Getachew
    No ratings yet
  • F
    F
    Document39 pages
    F
    María Teresa Franco González
    No ratings yet
  • Titularizare
    Titularizare
    Document39 pages
    Titularizare
    cristina floricica
    No ratings yet
  • F
    F
    Document37 pages
    F
    Keneddy R Escalona
    No ratings yet
  • F
    F
    Document37 pages
    F
    Muhammad Mounir
    No ratings yet
  • F
    F
    Document37 pages
    F
    anvitha builders developers
    No ratings yet
  • F
    F
    Document37 pages
    F
    Carolina
    No ratings yet
  • F
    F
    Document36 pages
    F
    My Site
    No ratings yet
  • F
    F
    Document37 pages
    F
    Pebriyani Khairunnisa
    No ratings yet
  • F
    F
    Document38 pages
    F
    إباء خلوف
    No ratings yet
  • F
    F
    Document38 pages
    F
    Deivy Pico
    No ratings yet
  • Latest Trends-Motion UI
    Latest Trends-Motion UI
    Document2 pages
    Latest Trends-Motion UI
    Shafiqul Islam
    No ratings yet
  • Serverless Architecture: Saas Solutions
    Serverless Architecture: Saas Solutions
    Document2 pages
    Serverless Architecture: Saas Solutions
    Shafiqul Islam
    No ratings yet
  • Latest Trends-Voice Search
    Latest Trends-Voice Search
    Document1 page
    Latest Trends-Voice Search
    Shafiqul Islam
    No ratings yet
  • Latest Trends-Artificial Intelligence (AI) and Bots
    Latest Trends-Artificial Intelligence (AI) and Bots
    Document2 pages
    Latest Trends-Artificial Intelligence (AI) and Bots
    Shafiqul Islam
    No ratings yet
  • Cpanel To GSuite Practical Guide
    Cpanel To GSuite Practical Guide
    Document2 pages
    Cpanel To GSuite Practical Guide
    Shafiqul Islam
    No ratings yet
  • Latest Trends-Progressive Web Applications
    Latest Trends-Progressive Web Applications
    Document2 pages
    Latest Trends-Progressive Web Applications
    Shafiqul Islam
    No ratings yet
  • How To Migrate CPanel To GSuite
    How To Migrate CPanel To GSuite
    Document2 pages
    How To Migrate CPanel To GSuite
    Shafiqul Islam
    No ratings yet
  • E-Mail Migration Tileline
    E-Mail Migration Tileline
    Document1 page
    E-Mail Migration Tileline
    Shafiqul Islam
    No ratings yet
  • Java Beginner Guide
    Java Beginner Guide
    Document2 pages
    Java Beginner Guide
    Shafiqul Islam
    No ratings yet
  • Become A PHP Expert
    Become A PHP Expert
    Document3 pages
    Become A PHP Expert
    Shafiqul Islam
    No ratings yet
  • The Latest Web Trends
    The Latest Web Trends
    Document1 page
    The Latest Web Trends
    Shafiqul Islam
    No ratings yet
  • How To Migrate CPanel To GSuite
    How To Migrate CPanel To GSuite
    Document2 pages
    How To Migrate CPanel To GSuite
    Shafiqul Islam
    No ratings yet
  • The Latest Website Trends
    The Latest Website Trends
    Document1 page
    The Latest Website Trends
    Shafiqul Islam
    No ratings yet
  • A Definite Guide For Java Learners
    A Definite Guide For Java Learners
    Document3 pages
    A Definite Guide For Java Learners
    Shafiqul Islam
    No ratings yet
  • A Definite Guide For Java Learners
    A Definite Guide For Java Learners
    Document2 pages
    A Definite Guide For Java Learners
    Shafiqul Islam
    No ratings yet
  • How To Migrate CPanel To GSuite
    How To Migrate CPanel To GSuite
    Document2 pages
    How To Migrate CPanel To GSuite
    Shafiqul Islam
    No ratings yet
  • PHP Expert Guide
    PHP Expert Guide
    Document2 pages
    PHP Expert Guide
    Shafiqul Islam
    No ratings yet
  • SL Task Title Time Line Status: Requirements
    SL Task Title Time Line Status: Requirements
    Document1 page
    SL Task Title Time Line Status: Requirements
    Shafiqul Islam
    No ratings yet
  • The Latest Web Trends
    The Latest Web Trends
    Document1 page
    The Latest Web Trends
    Shafiqul Islam
    No ratings yet
  • PHP Expert Guide
    PHP Expert Guide
    Document2 pages
    PHP Expert Guide
    Shafiqul Islam
    No ratings yet
  • The Latest Web Trends
    The Latest Web Trends
    Document1 page
    The Latest Web Trends
    Shafiqul Islam
    No ratings yet
  • PHP Expert Guide
    PHP Expert Guide
    Document2 pages
    PHP Expert Guide
    Shafiqul Islam
    No ratings yet
  • Zend TEST
    Zend TEST
    Document8 pages
    Zend TEST
    Shafiqul Islam
    No ratings yet
  • Object Oriented Programming
    Object Oriented Programming
    Document1 page
    Object Oriented Programming
    Shafiqul Islam
    No ratings yet
  • The Latest Web Trends
    The Latest Web Trends
    Document1 page
    The Latest Web Trends
    Shafiqul Islam
    No ratings yet
  • How To Migrate CPanel To GSuite
    How To Migrate CPanel To GSuite
    Document2 pages
    How To Migrate CPanel To GSuite
    Shafiqul Islam
    No ratings yet
  • Building App Using Cordova
    Building App Using Cordova
    Document1 page
    Building App Using Cordova
    Shafiqul Islam
    No ratings yet
  • Object Oriented Programming
    Object Oriented Programming
    Document1 page
    Object Oriented Programming
    Shafiqul Islam
    No ratings yet